home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / hobby / ast44src.zip / MAKEFILE.BGI < prev    next >
Text File  |  1995-02-11  |  1KB  |  30 lines

  1. # Astrolog (Version 4.40) File: makefile (PC version)
  2. #
  3. # IMPORTANT NOTICE: The graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1995 by Walter D. Pullen
  5. # (astara@u.washington.edu). Permission is granted to freely use and
  6. # distribute these routines provided one doesn't sell, restrict, or
  7. # profit from them in any way. Modification is allowed provided these
  8. # notices remain with any altered or edited versions of the program.
  9. #
  10. # This Makefile created for Borland Turbo C/C++ compiler.
  11. # First created 8/21/1994.
  12.  
  13. CFLAGS = -ml -Ff=50  -G- -O -r  -w-pia -w-sus
  14.  
  15. CC = tcc
  16. TLINK = tlink
  17. LIBPATH = C:\TC\LIB
  18. name = astrolog
  19. objs = attf.obj cgaf.obj egavgaf.obj hercf.obj ibm8514f.obj pc3270f.obj\
  20.  astrolog.obj data.obj data2.obj general.obj io.obj\
  21.  calc.obj matrix.obj placalc.obj placalc2.obj\
  22.  charts0.obj charts1.obj charts2.obj charts3.obj intrpret.obj\
  23.  xdata.obj xgeneral.obj xdevice.obj\
  24.  xcharts0.obj xcharts1.obj xcharts2.obj xscreen.obj
  25.  
  26. $(name).exe : $(objs)
  27. # We are compiling in Large memory model with 16,384 bytes for stack storage.
  28.   $(TLINK) /c /x /L$(LIBPATH) @makefile.cfg
  29. #
  30.